program MoveEx;
{$RESOURCE moveex32.res}
{$APPTYPE Console}
uses
SysUtils,
windows,
Classes;
var dwopt:Dword;
b:boolean;
s:string;
begin
if paramcount<2 then begin
writeln('Usage: ',extractfilename(paramstr(0)),' oldfilename [newfilename] [options]');
writeln('Options:');
writeln('/D Deletes the file instead of moving/renaming it');
writeln('/E Work even when newfilename exists');
writeln('/T Try moving/deleting file before doing it on next boot');
writeln('OPTIONS ARE CASE SENSITVE');
writeln('IF FILEPATHS CONTAIN SPACES THEY SHOULD HAVE QUOTES(") SURROUNDING THEM');
write('Press Enter to quit...');
readln(s);
exitprocess(0);
end;
setlasterror(0);
dwopt:=0;
if strpos(getcommandline,' /E')<>nil then
dwopt:=MOVEFILE_REPLACE_EXISTING;
if StrPos(getcommandline,' /T')<>nil then
begin
if StrPos(getcommandline,' /D')<>nil then
b:=deletefile(Pchar(paramstr(1)))else
b:=movefileex(PChar(paramstr(1)),pchar(paramstr(2)),dwopt);
writeln('Try:',syserrormessage(getlasterror));
if b then exitprocess(0);
end;
dwopt:=dwopt or MOVEFILE_DELAY_UNTIL_REBOOT;
if strpos(getcommandline,' /D')=nil then
MoveFileex(PChar(paramstr(1)),pchar(paramstr(2)),dwopt) else
movefileex(pchar(paramstr(1)),nil,dwopt);
writeln(syserrormessage(getlasterror));
exitprocess(getlasterror);
end.
program MoveEx;
{$RESOURCE moveex32.res}
{$APPTYPE Console}
uses
SysUtils,
windows,
Classes;
var dwopt:Dword;
b:boolean;
s:string;
begin
if paramcount<2 then begin
writeln('Usage: ',extractfilename(paramstr(0)),' oldfilename [newfilename] [options]');
writeln('Options:');
writeln('/D Deletes the file instead of moving/renaming it');
writeln('/E Work even when newfilename exists');
writeln('/T Try moving/deleting file before doing it on next boot');
writeln('OPTIONS ARE CASE SENSITVE');
writeln('IF FILEPATHS CONTAIN SPACES THEY SHOULD HAVE QUOTES(") SURROUNDING THEM');
write('Press Enter to quit...');
readln(s);
exitprocess(0);
end;
setlasterror(0);
dwopt:=0;
if strpos(getcommandline,' /E')<>nil then
dwopt:=MOVEFILE_REPLACE_EXISTING;
if StrPos(getcommandline,' /T')<>nil then
begin
if StrPos(getcommandline,' /D')<>nil then
b:=deletefile(Pchar(paramstr(1)))else
b:=movefileex(PChar(paramstr(1)),pchar(paramstr(2)),dwopt);
writeln('Try:',syserrormessage(getlasterror));
if b then exitprocess(0);
end;
dwopt:=dwopt or MOVEFILE_DELAY_UNTIL_REBOOT;
if strpos(getcommandline,' /D')=nil then
MoveFileex(PChar(paramstr(1)),pchar(paramstr(2)),dwopt) else
movefileex(pchar(paramstr(1)),nil,dwopt);
writeln(syserrormessage(getlasterror));
exitprocess(getlasterror);
end.
Root
Back
Forward
Go to parent folder
Reload
Mount network volume
New folder
New file
Upload files
Open
Download
Select files
Undo
Redo
Copy
Cut
Paste
Delete
Empty the folder
Duplicate
Rename
Edit file
Resize & Rotate
Change mode
Select all
Select none
Invert selection
Preview
Get info
Extract files from archive
Create archive
View
Sort
About this software
Full Screen
Trash
by name
by size
by kind
by date
by permission
by mode
by owner
by group
Folders first
Also Treeview
Error
Unable to connect to backend. HTTP error 0
All programs are virus free. Some antivirus software might say its "suspicious" or a "Potentionaly Unwanted Program". Some of them rate them on what there code looks like no matter if theres a definition in the virus database. If any of them are detected any Antivirus I will zip the software with the password "justin" j is lowercase
Published by Justin Roeder
I am an electronics engineer and computer programmer that has autism. I learned by myself
View more posts
delphijustin Industries is an Autism Supported Business