You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 5, 2018. It is now read-only.
What steps will reproduce the problem?
1. execute move/rename command on command prompt to move or rename the file
2.
3.
What is the expected output? What do you see instead?
rename of file or movement of file from one location to another
What version of the product are you using? On what operating system?
dokan 0.2.0 and windows server 2008.
Please provide any additional information below.
whenever i execute move or rename command on command prompt (move/rename
first.txt second.txt), first call goes to dokan createfile function and
not to move file function. Create file tries to open second file
(second.txt) and it doesnot get it and create file function throws an
error saying file(second.txt) not found. why this is so?
Original issue reported on code.google.com by anandji...@gmail.com on 20 Oct 2008 at 3:58
The text was updated successfully, but these errors were encountered:
Hello,
I think this is expected behavior. move command checks whether the target file
exists
and when it doesn't exist, it changes the file name.
Every file operation invokes CreateFile(or CreateDirectory,OpenDirectory).
Please read dokan readme file for more information.
http://dokan-dev.net/en/docs/dokan-readme/
Original comment by asa...@gmail.com on 20 Oct 2008 at 4:09
I agree that move/rename command should call createfile function. But in
createfile
function filemode of first file as well as second file is open. As Second file
is
not present and its in open mode so create file function can not create it or
open
it. At the end move/rename file command doesnot work. I tried creating file in
createfile function even if it is in open mode but semantically it's incorrect.
can
you please tell me what is workaround for move/rename file?
Original comment by anandji...@gmail.com on 21 Oct 2008 at 11:25
When the second file is opened, CreateFile should fail and return -
ERROR_FILE_NOT_FOUND (file) or -ERROR_PATH_NOT_FOUND (directory). You can
figure out
by checking how Dokan mirror works.
Original comment by asa...@gmail.com on 21 Oct 2008 at 1:45
Changed state: WontFix
Added labels: Type-Other
Removed labels: Type-Defect
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Original issue reported on code.google.com by
anandji...@gmail.com
on 20 Oct 2008 at 3:58The text was updated successfully, but these errors were encountered: