Questions tagged [file-management]

File Management relates to the efficient control over, usage of and access to files by users and computer operating systems

File Management topics covered by this tag include

  • Popular computer operating systems
  • Project management software and processes
  • Web server caching algoritms
  • Software development tools, such as XCode and phpCake
538 questions
2
votes
4 answers

Is there a way to lowercase all subdirectory names using bash script?

I'm trying to format old files to fit/incorporate in our current automation of dataset processing. However, the directory and sub-directory names of the old files where all in upper case. I don't exactly know how to do this using bash script. Is…
ckelmeckis
  • 43
  • 3
2
votes
2 answers

FileManager for NetBeans

I am developing fot Android using NetBeans. I have moved from Eclipse, where I have often used file explorer, for pushing and pulling data from and to device. Is there in Netbeans simple window, if co, how to activate? Thanks
Waypoint
  • 17,283
  • 39
  • 116
  • 170
2
votes
1 answer

Looping through files in databricks fails

Continuation to Managing huge zip files in dataBricks Databricks hangs after 30 files. What to do? I have split huge 32Gb zip into 100 stand-alone pieces. I've split header from the file and can thus process it like any CSV-file. I need to filter…
pinegulf
  • 1,334
  • 13
  • 32
2
votes
1 answer

How to remove a word from text file in C program?

So I have a file called test.txt with the following text: Hello World! I hope you are doing well. I am also well. Bye see you! Now I want to remove the word Bye from the text file. I want to make changes in the same file, in the test.txt file, not…
Subreena
  • 158
  • 1
  • 1
  • 10
2
votes
1 answer

How do I open multiple files from lf file manager?

I use the space key to select multiple files but then when I do :open it only opens one of then (despite multiple being selected). I find it strange because the space key seems to work fine for other operations like copying and pasting multiple…
John Smith
  • 835
  • 1
  • 7
  • 19
2
votes
0 answers

Interactive hierarchical data visualization in python?

I want to visualize age of files in a large directory structure, with the ability to drill down by expanding/collapsing directories. The below linked image represents an idea of what it could look like. Image: Gantt-like time distribution with…
2
votes
1 answer

The filename, directory name, or volume label syntax is incorrect: ':' Python

I'am trying to add some new features to my file-management system. But I get struck with the following. I have 3 folders (Source, Destination and Archive). Each of them has 3 sub-folders (A, B and C). Only the sub-folders in Source contain 1 or more…
ManCity10
  • 119
  • 1
  • 12
2
votes
1 answer

Is there a problem with writing codes or writing codes on Python?

I want to calculate a class' notes from Folder.txt with note_calculate. And I can calculate the grades as well. After calculating, I insert in list(Which called allnames). After that I took the information from that list to a new txt folder called…
2
votes
1 answer

Can you have two FTP connections in Visual Studio Code at the same time?

I have two ftp connection I want to be able to browse and open files within those connections at the same time. I like SFTP because it shows the ftp file tree on the side like a regular directory. If its not possible to do it at the same time is…
Evan
  • 21
  • 2
2
votes
2 answers

How can find all files of the same extension within multiple subdirectories and move them to a seperate folder using python?

I have copied the contents of an older camcorder onto my computer,within the folder that was transferred there over 100 sub folders all containing 6 or 7 files I want. How am able to search through all of them and have all found files moved to a new…
2
votes
1 answer

Sorting files by date in FAR manager

Is there a way to sort files and folders in FAR manager by date created/modified? If so, can it be applied to a specific folder?
2
votes
0 answers

filesize is not growing as expected

I am trying to record a stream here on my machine to study ffmpeg library, but with(out) success. I have a file watcher to clean up bugged streams, that cleanup each 3 minutes files that have been not changed less then 3 minutes. The real problem…
Oracy Martos
  • 451
  • 1
  • 4
  • 19
2
votes
1 answer

Efficient and safe storage of string pairs C++

I am making a volume (voxel) based terrain generation engine using polyvox, and will be need to store lots of volume information. The Polyvox library makes it easy to pull out the values. However the large number of chunks, makes it infeasible to…
GM Riscvul
  • 21
  • 1
2
votes
2 answers

How should I store files in NodeJS

I'm a newer in Nodejs and researching on how to upload file using Multer in NodeJS. And I saw that most of the tutorial out there store all kinds of files (audio, avatar photo, banner photo, text, PDFs,..) in only a static "public" folder. My first…
Louis
  • 65
  • 2
  • 10
2
votes
1 answer

Settings File is corrupted as well as the backup file

/// /// Save settings to config file. Create backup of current settings /// public void SaveSettings() { Directory.CreateDirectory(CONFIG_DIRECTORY); // move current settings file to backup …