Asking to replace short name[#7616]

Post a reply

Smilies
:D :) :( :o :-? 8) :lol: :x :P :oops: :cry: :evil: :roll: :wink:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Asking to replace short name[#7616]

Re: Asking to replace short name[#7616]

by Lowlander » Fri Apr 29, 2011 1:19 pm

This should be fixed in 1367, can you confirm?

Re: Asking to replace short name

by Peke » Thu Mar 31, 2011 4:51 pm

I added http://www.ventismedia.com/mantis/view.php?id=7616 for oSongData.Path = oFSO.GetFile(oSongData.Path).ShortPath as for Move you actually do change file name so duplicates are OK (at least according to Windows NTFS)

Asking to replace short name[#7616]

by CarlitoGil » Thu Mar 31, 2011 6:15 am

3.2.4.1304

If you rename a file to it's short path MM ask you if you want to replace it, like if other file had that path.

Code: Select all

oSongData.Path = oFSO.GetFile(oSongData.Path).ShortPath
In the mean time I avoid the prompt like this, but this creates duplicate entries in monitored folders

Code: Select all

oSongData.Path = ""
oFSO.MoveFile oSongData.Path, oFSO.GetFile(oSongData.Path).ShortPath
oSongData.Path = NewPath

Top