mirror of
https://github.com/suchmememanyskill/TegraScript.git
synced 2025-01-25 02:03:02 -03:00
Update savedumper.te
This commit is contained in:
parent
dce81c523c
commit
30d259f6cc
1 changed files with 12 additions and 5 deletions
|
@ -50,12 +50,19 @@ if (@checkInput, == , 0){
|
||||||
}
|
}
|
||||||
|
|
||||||
combineStrings("sd:/tegraexplorer/", $folder, $path)
|
combineStrings("sd:/tegraexplorer/", $folder, $path)
|
||||||
|
|
||||||
|
fs_mkdir("sd:/tegraexplorer")
|
||||||
fs_mkdir($path)
|
fs_mkdir($path)
|
||||||
combineStrings("Copying saves to ", $path, $out)
|
|
||||||
printf($out)
|
printf("Copying saves to ", $out)
|
||||||
printf("")
|
printf("")
|
||||||
fs_copyRecursive("emmc:/save", $path)
|
@check = fs_copyRecursive("emmc:/save", $path)
|
||||||
printf("")
|
printf("")
|
||||||
|
if (@check){
|
||||||
|
printf("Something went wrong! Errcode: ", @check)
|
||||||
|
}
|
||||||
|
if (@check, == , 0){
|
||||||
printf("Done, press any button to exit")
|
printf("Done, press any button to exit")
|
||||||
|
}
|
||||||
pause()
|
pause()
|
||||||
exit()
|
exit()
|
Loading…
Add table
Reference in a new issue