Replies: 2 comments 1 reply
-
How do you implement the create file and write methods in your .NET class? There are several limitations for opening and writing alternate data streams in .NET applications, particularly in old .NET Framework but there are some things to watch out for in modern .NET versions as well. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I left them as they were from the sample app. I am compiling this in .Net 4.7.2 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
WIth the original Mirror from Dokan I can use PS and c# to write streams. I cannot get the sample dotnet one to write streams. The error it give me is The given path's format is not supported. I have tried several ways
The powershell I used was
$$file="F:\stream.txt"
$streamName= "myStream"
$textToAdd = "Hello World"
$textToAdd | Add-Content -Path "$file':$streamName"
This works with the original mirror, but cannot get it to work with the doakanNetMirror.
Beta Was this translation helpful? Give feedback.
All reactions