Jump to content

Get list of contents in mod directory


RoboMat

Recommended Posts

What for? If you just want to browse then you could get it by creating a batch file in the mod directory with the code below and run as admin, it will give you a basic list of every file in every subfolder.

On windows, anyway.
 

 

@echo off

pushd %~dp0
set THIS_DIR=%CD%
tree %1 /A /F > "%temp%\Listing"
start /w notepad "%temp%\Listing"
exit
Link to comment
Share on other sites

Probably not since 32.1. Any specific reason you need it?

 

Just convenience. Would've been nice to just make it read files from the mod folder automatically instead of having to specify their paths in a separate file.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...