Desktop Functions: Smart Device Functions:
|
Search Results for "FileStream" in [All]kernel321: 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); 4: FileStream
FileStream[] files = assembly.GetFiles(); 6: 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)); 8: SetFileTime
Dim oFile_Stream As System.IO.FileStream 9: 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. 10: 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. msvcrt11: fclose [System.IO.FileStream] 12: fopen [System.IO.FileStream] 13: fwrite System.IO.FileStream advapi3214: 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(); Enums
FileStreamInfo = 7, 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); 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)) { urlmon19: FindMimeFromData
FileStream fs = File.OpenRead(file);
Dim fs As New FileStream(file, FileMode.Open) dbghelp
FileStream file = new FileStream(dumpFileName, FileMode.Create); wintrust21: IsCatalogFile
using (FileStream fs = new FileStream("c:\\my_catalog.cat", FileMode.Open)) |