mirror of
https://github.com/quotefox/Hyper-Station-13.git
synced 2026-07-20 12:12:26 +01:00
8 lines
343 B
Batchfile
8 lines
343 B
Batchfile
@echo off
|
|
REM Get the documents folder from the registry.
|
|
@echo off
|
|
for /f "tokens=3*" %%p in ('REG QUERY "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Personal') do (
|
|
set DocumentsFolder=%%p
|
|
)
|
|
REM Copy to tmp subdirectories
|
|
FOR /D %%G in ("%DocumentsFolder%\BYOND\cache\tmp*") DO (cmd /c copy assets\* %%G /y) |