Guest User

Untitled

a guest
Jan 23rd, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Var
  2. _NewPath: string;
  3.  
  4. if MakeFolders then
  5. begin
  6. _NewPath := Format('%_Name_%d', [_FilePath, i]);
  7. ForceDirectories(_NewPath);
  8. end
  9. else
  10.  
  11. '%s_Name_%d'
  12.  
  13. if MakeFolders then
  14. begin
  15. _NewPath := Format(Edit1.Text, [_FilePath, i]);
  16. ForceDirectories(_NewPath);
  17. end
  18. else
Add Comment
Please, Sign In to add comment