• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Script (any language or even powershell) to run a certain set of commands.

multiband8303

Senior member
In a very very short nutshell, I have a shared network drive to my clients that is composed of over 120 Main folders, each of those main folders have about 18 child objects, and *SOME* of those child objects have 7 sub folders.

What I need to do is create a folder for all of these guys are in only the locations where another folder exists, and I want it to be the side of it. So for example

Main Folder - Parent Folder - Child Folder - Sub Child Folder (named "xyz)

Wherever xyz is I want a new folder called abc, sitting underneath "child folder" and to the "side" of XYZ.

How would I do this?
 
I've been doing a little Python directory work lately, and it reminded me of what I've done before. Here's a recipe for walking a directory tree. Your description is a little too short for me to be sure about it, but maybe some modification of that with os.mkdir() will work for you?
 
Back
Top