Open GoogleCodeExporter opened 9 years ago
Aren't those flags included in the DokanInfo structure? e,g from .Net
public class DokanFileInfo
{
public ulong refFileHandleContext; // Used by the ops.cs files to store a lookup to the FileStream etc.
public bool IsDirectory;
public uint ProcessId;
public bool DeleteOnClose;
public bool PagingIo;
public bool SynchronousIo; <---------
public bool Nocache; <---------
public bool WriteToEndOfFile; <---------
}
Have a look at the CreateFile handler in this:
http://liquesce.codeplex.com/SourceControl/changeset/view/63045#1409114
Original comment by smurf...@gmail.com
on 23 Mar 2011 at 9:06
Thanks, I found this flag is set in the sys\read.c file, line 150, not in the
create file. I have the flag "Nocache" set in MirrorReadFile, not in
MirrorCreateFile. This flag Shouldn't be set in MirrorCreateFile ?
Original comment by david102...@gmail.com
on 23 Mar 2011 at 10:18
Original issue reported on code.google.com by
david102...@gmail.com
on 20 Mar 2011 at 6:59