Skip to content

Commit

Permalink
Make Drive ReadOnly volume
Browse files Browse the repository at this point in the history
  • Loading branch information
dedmen authored and Dahlgren committed Jul 14, 2018
1 parent 03798af commit c9b1268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DokanPbo.Core/PboFS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public NtStatus WriteFile(string filename, byte[] buffer, out int writtenBytes,
public NtStatus GetVolumeInformation(out string volumeLabel, out FileSystemFeatures features, out string fileSystemName, out uint maximumComponentLength, DokanFileInfo info)
{
volumeLabel = "PboFS";
features = FileSystemFeatures.None;
features = FileSystemFeatures.ReadOnlyVolume;
fileSystemName = String.Empty;
maximumComponentLength = 256;
return DokanResult.Success;
Expand Down

0 comments on commit c9b1268

Please sign in to comment.