📄 copy2sys.dpr
字号:
program copy2sys;
{this is a tiny wee console utility which is useful for installing
screensavers. A list of files passed in as command line parameters
will be copied to the windows system directory. Won't work for filenames
with spaces (And I don't care). Can be used in a batch file without having to
worry about where windows is installed or whether you are on NT or 95
usage eg
copy2sys camphill.scr
}
uses
SysUtils,
Windows;
{$APPTYPE Console}
var
SysDir: array[0..255] of Char;
i: Integer;
SrcPath, SrcFile: String;
TargPath, TargFile: String;
begin
GetSystemDirectory(SysDir, SizeOf(SysDir));
TargPath:= SysDir;
SrcPath:= ExtractFilePath(ParamStr(0));
for i:= 1 to ParamCount do
begin
SrcFile:= SrcPath + ParamStr(i);
TargFile:= TargPath+ '\' + ParamStr(i);
if CopyFile(PChar(SrcFile), PChar(TargFile), false) then
Writeln(Format('%s copied to %s ok', [SrcFile, TargFile]))
else
Writeln(Format('could not copy %s to %s', [SrcFile, TargFile]))
end
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -