Цитата: Как может 1.exe узнать, что его назвали 1.exe, а например не 2.exe?
CODE:external(INT, "GetCommandLine", "GetCommandLineA", "Kernel32.dll");
int adres = GetCommandLine();
int i=0;
string command="";
loop()
{
char c = addressc(adres+i);
if(formatci(c) == 0)break;
command=command+c;
i++;
}
string name_exe;
messagebox(command);
regexreplace(-1, #command, command, "\^"", ""); // удалить кавычки
regexsearch(1, #name_exe, command, "[^\\]+", RIGHTTOLEFT); // найти имя exe
messagebox(name_exe);
Цитата: как долго в tempfolder сохраняются файлы?
Скорее всего пока вручную не удалить будут лежать там.(Отредактировано автором: 13 Июля, 2021 - 01:30:51) |