Skip to main content

Questions tagged [recursive]

The tag has no usage guidance.

1 vote
0 answers
25 views

How do I delete all folders with a similar name that do not contain large files on linux commandline?

On my linux server for my media library I used a function to change show season names to have a leading zero when needed, so "Season 1" would be Season 01" and so on. The problem is ...
Graham F's user avatar
-2 votes
2 answers
127 views

find if files in one directory recursively exists in another directory recursively in linux bash and print exists or not exists

find if files in one directory recursively exists in another directory recursively in linux bash and print exists or not exists lets say you have pth1/dirA/file1 pth1/dirA/DirB/file2 and pth2/dirA/...
Estatistics's user avatar
1 vote
2 answers
1k views

How to copy files changed in last 20 days to a different location recusively

I found a code here (on this site) which allows copying of files changed in last 20 days. My issue is that I have a folder with many subfolders and some subfolders could be 8 or more levels deeps. I ...
Mohammed Khawaja's user avatar
1 vote
1 answer
2k views

Batch Script to delete certain files inside subfolders of a main subfolder

My problem is this I have an extensive collection of pictures spanning several sub-folders (I'm talking of several hundred of folders, not a few), under a main folder, as example: Birthdays Mom ...
diras2010's user avatar
  • 308
1 vote
1 answer
45 views

Recursive rename with negate filter not working

I want my script to recursively rename all .mov files to _Proxy.mov, BUT I also want it to SKIP any files already named _Proxy.mov. The below command is still renaming all .mov files, and is ignoring ...
Sam's user avatar
  • 11
0 votes
2 answers
916 views

Calling a Recursive Function in a Batch File

I am currently trying to write a batch file for a project that will mimic the structure of the following pseudocode: void h ( int n ) if ( n ≥ 4 ) h ( n / 2 ) end if print ...
Digital Samizdat's user avatar
1 vote
0 answers
103 views

How to display recursive geometric image in browser with infinite zooming? [closed]

Context Suppose one has a pentagonal tiling where each plane is also made up of a pentagonal tiling (if that is not possible, assume cubic). Suppose each parent is x times larger than its child. Then ...
a.t.'s user avatar
  • 423
0 votes
0 answers
2k views

recursively delete a specific directory for each user in C:\Users

Would like to use powershell to loop through all C:\Users\* and delete all contents of a subdirectory... Some users, but not all, use an app that creates cache files at: C:\Users\UserName\AppData\...
AM_Hawk's user avatar
  • 101
0 votes
3 answers
1k views

Recursively remove a character from folders in Windows

Given a folder structure: ---- folder1#name --------- folder2#name ---- folder3#name --------- folder4#name ------------ folder5#name ------------ folder6#name ------------ folder7#name I want to ...
Edd Chang's user avatar
  • 111
0 votes
0 answers
267 views

Add attribute to a file/folder

I tried that to add an attribute to a file/folder Get-ChildItem '$PATH' -Recurse | foreach{$_.Attributes = $_.Attributes + 'Compressed'} Problem is that it create a cycle like that : Not compressed &...
aac's user avatar
  • 1
0 votes
2 answers
2k views

7z - compress files in sub-directory, name them for parent folder

I'm trying to compress a folder structure like so: Root |_ Folder |_Sub Folder 1 |_Files |_Sub Folder 2 |_Files |_ *more Sub Folders* I need to create .zip file ...
Charles O'Connor's user avatar
0 votes
1 answer
1k views

Parallel processing and order of execution with recursive loop

If i run a script that processes a path recursively using parallel processing to execute a command on the whole tree if items, am I guaranteed that the commands I use will be executed on all items in ...
maja's user avatar
  • 329
1 vote
2 answers
40 views

Windows 10: deleting a directory doesn't work... but works [closed]

I am developping a application. Sometimes, I want to completely delete the building directory. When I do this I get an error from Windows, that either I don't have acess or some file(s) in the ...
Jacques's user avatar
  • 111
0 votes
2 answers
213 views

Windows7 command prompt show number of objects as list from dir command

I'm using Windows7, and I want to know the number of files (or objects) for comparison to objects in Amazon S3 buckets. I'm not interested in size, as the size can differ between file types. I want ...
Jordan's user avatar
  • 1
1 vote
1 answer
2k views

How to share the Zoom window itself in Zoom?

I want to interactively demonstrate how to use the Zoom meeting room controls to a Zoom meeting. However, Zoom doesn't seem to offer a way to share the actual Zoom window (the one you see when there ...
Foo Bar's user avatar
  • 468

15 30 50 per page
1
2 3 4 5
7