You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
```COPY "host:/FOLDER/FILE.TXT" "mass:/FOLDER1/FOLDER2/FILE.TXT"``` will copy the single file, but will not create destination folder structure.
271
+
272
+
```COPY "host:/FOLDER" "mass:/FOLDER/FOLDER2"``` will copy contents source folder to destintaion folder
273
+
274
+
Notes: copying a file to a file only works if prior directories already exist on destination.
275
+
276
+
```COPY "host:/FOLDER" "mass:/FOLDER1/FOLDER2/FILE.TXT"``` DOES NOT WORK
277
+
278
+
```COPY "host:/FOLDER" "mass:/FOLDER1/FOLDER2/"``` This does work to create an empty mass:/FOLDER1 but will say it fails if used with ```IF COPY FAIL```
279
+
280
+
271
281
272
282
#### RM
273
283
To delete a file or directory
@@ -288,6 +298,23 @@ To create a new folder.
288
298
289
299
will create a folder MYFOLDER in the USB mass storage.
290
300
301
+
Note: MKDIR will not create mutliple folders for example if MYFOLDER, FOLDER and FOLDER3 do not exist:
302
+
303
+
```
304
+
IF NOT EXISTS "mass:/MYFOLDER/FOLDER2/FOLDER3"
305
+
IF FAIL MKDIR "mass:/MYFOLDER/FOLDER2/FOLDER3"
306
+
MESSAGE "FAILED TO CREATE DIRECTORY!"
307
+
ENDIF
308
+
ENDIF
309
+
```
310
+
311
+
The workaround is to exploit a bug that thinks it failed
Invented by the Matrix Team, they designed a cheap and easy fix for V9-V12 PS2s, documented [here](https://github.com/MechaResearch/MechaPwn/blob/master/docs/PICfix.md) and refined by HaloSlayer255 and [ModzvillUSA](https://modzvilleusa.com/products/ps2-matrix-picfix-for-v9-v12-ps2-consoles). When the mechacon crashes, this shuts down the PS2 instead of letting the laser burn up.
9
+
Invented by the Matrix Team, they designed a cheap and easy fix for V9-V12 PS2s, documented [here](https://github.com/MechaResearch/MechaPwn/blob/master/docs/PICfix.md) and refined by HaloSlayer255 and [ModzvillUSA](https://modzvilleusa.com/products/ps2-matrix-picfix-for-v9-v12-ps2-consoles). When the DSP (Digital Signal Processor) crashes, this shuts down the PS2 instead of letting the laser burn up.
10
10
11
11
12
12
I (R3Z3N) simply applied some artistic touch to make this an easier install that will look professional with decent soldering skills. CLEAN YOUR FLUX BOYS!
0 commit comments