User Asset directory

HI ,

Would be helpful if we could choose a directory for our user assets on another drive maybe as this folder will be very large eventually?

1 Like

I used a batch script mklink for remapping My Assets folder.

C:\Users\YourPC\AppData\Roaming\D5 Render\library\material - current directory of your Assets
G:\D5\material - New Directory of your Assets.

I cannot yet find the directory of the Built in assets, You can only remap your custom assets.
Also, I hope they enable support for a folder structure within My Assets. You cannot yet organize your assets if you want.

mklink /D “C:\Users\YourPC\AppData\Roaming\D5 Render\library\material” “G:\D5\material”
mklink /D “C:\Users\YourPC\AppData\Roaming\D5 Render\library\model” “G:\D5\model”

pause

-paste this script in Notepad and replace the file extension as .Bat instead of .txt as you save.

  • Paste here : C:\Users\YourPC\AppData\Roaming\D5 Render\library
    -Run as Admin
    -Press any key
1 Like

Thankyou so much egrojeca :slight_smile:

hi,

i follow your soluion, i created a asset.bat

mklink /D “C:\Users\tjuin\AppData\Roaming\D5 Render\library\material” “D:\D5\material”
mklink /D “C:\Users\tjuin\AppData\Roaming\D5 Render\library\model” “D:\D5\model”

pause

then here is the screeen message

C:\Windows\system32>c:\ mklink /D ΓÇ£C:\Users\tjuin\AppData\Roaming\D5 Render\library\materialΓÇ¥ ΓÇ£D:\D5\materialΓÇ¥
‘c:’ is not recognized as an internal or external command,
operable program or batch file.

C:\Windows\system32>c:\ mklink /D ΓÇ£C:\Users\tjuin\AppData\Roaming\D5 Render\library\modelΓÇ¥ ΓÇ£D:\D5\modelΓÇ¥
‘c:’ is not recognized as an internal or external command,
operable program or batch file.

C:\Windows\system32>pause
Press any key to continue . . .

1 Like