move data files to new folder

This commit is contained in:
Basile Burg 2018-10-20 14:26:14 +02:00
parent 3c1e1a2a66
commit 0634d4f0a1
1 changed files with 8 additions and 1 deletions

View File

@ -777,8 +777,15 @@ begin
end;
function getDocPath: string;
var
o: string;
n: string;
begin
result := getUserDataPath + 'dexed' + directorySeparator;
o := getUserDataPath + 'Coedit' + directorySeparator;
n := getUserDataPath + 'dexed' + directorySeparator;
if not n.dirExists and o.dirExists then
CopyDirTree(o, n);
result := n;
end;
function isFolder(sr: TSearchRec): boolean;