Desktop Functions: Smart Device Functions:
|
Search Results for "FileStream" in [All]msvcrt1: fclose [System.IO.FileStream] 2: fopen [System.IO.FileStream] 3: fwrite System.IO.FileStream Enums
FileStreamInfo = 7, urlmon
FileStream fs = File.OpenRead(file);
Dim fs As New FileStream(file, FileMode.Open) dbghelp
FileStream file = new FileStream(dumpFileName, FileMode.Create); kernel327: CreateFile
FileStream _fs;
internal static IntPtr CreateFileMapping(System.IO.FileStream File, FileMapProtection flProtect, Int64 ddMaxSize, string lpName)
FileStream _fs;
internal static IntPtr CreateFileMapping(System.IO.FileStream File, FileMapProtection flProtect, Int64 ddMaxSize, string lpName)
FileStream f=File.Open(filename,System.IO.FileMode.Open,System.IO.FileAccess.ReadWrite,System.IO.FileShare.None); 10: FileStream
FileStream[] files = assembly.GetFiles(); 12: ReadFile The documentation for the Scatter/Gather functions states that the buffer addresses used must be page aligned (not just storage aligned). Indeed, passing a managed allocation, such as a byte array, causes error 87 (Invalid Parameter). This function is asynchronous only so an use the AsyncResult and Overlapped pattern established by the FileStream.
FileStreamInfo = 7,
SetFileInformationByHandle(fileStream.SafeFileHandle, FileInformationClass.FileDispositionInfo, ref FileInformation, Marshal.SizeOf(FileInformation.FILE_DISPOSITION_INFO)); 14: SetFileTime
Dim oFile_Stream As System.IO.FileStream 15: WriteFile The documentation for the Scatter/Gather functions states that the buffer addresses used must be page aligned (not just storage aligned). Indeed, passing a managed allocation, such as a byte array, causes error 87 (Invalid Parameter). This function is asynchronous only so an use the AsyncResult and Overlapped pattern established by the FileStream. 16: WriteFileGather The documentation for the Scatter/Gather functions states that the buffer addresses used must be page aligned (not just storage aligned). Indeed, passing a managed allocation, such as a byte array, causes error 87 (Invalid Parameter). This function is asynchronous only so an use the AsyncResult and Overlapped pattern established by the FileStream. ntdll
FileStreamInformation
FileStreamInformation, // 22 using System.IO; // for test main (FileStream) only
FileStreamInformation, // 22
using(FileStream fs = new FileStream(path2file, FileMode.Open, FileAccess.Read, FileShare.Read)) {
using(FileStream fs = File.Create(path2file)) { advapi3218: GetSecurityInfo
FileStream fileStream = null;
fileStream = File.Open(@"C:\Test\Test.txt", FileMode.Open);
returnValue = GetSecurityInfo(fileStream.Handle, SE_OBJECT_TYPE.SE_FILE_OBJECT, SECURITY_INFORMATION.OWNER_SECURITY_INFORMATION | SECURITY_INFORMATION.DACL_SECURITY_INFORMATION, out ownerSid, out groupSid, out dacl, out sacl, out securityDescriptor);
fileStream.Close(); wintrust19: IsCatalogFile
using (FileStream fs = new FileStream("c:\\my_catalog.cat", FileMode.Open)) crypt32
FileStream ifs = new FileStream("MyTest.cer", FileMode.Open, FileAccess.Read);
using (FileStream fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.Read))
certData = new Byte[fileStream.Length];
fileStream.Read(certData, 0, (int)fileStream.Length); |