1,209 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
68
views
Bash Syntax error with multiple two paramter mkdir [closed]
mkdir ./output
for year in {1990..2025}
do
mkdir ./$year \n
for week in {1..52}
mkdir ./"$year"/"$week" \n
done
done
gives syntax error on second call of mkdir ...
2
votes
1
answer
83
views
wrong behavior in "mkdir -p -m 550 /tmp/test1/test2"? [closed]
I have a question regarding mkdir -p with the -m option or with a change on umask to 227.
When I want to create multiple folders like /tmp/test1/test2 and want all the newly created folders to have ...
0
votes
0
answers
317
views
EAS Build fails with tar Permission Denied errors (app/assets: Cannot mkdir: Permission denied)
I'm trying to generate an .aab file using EAS Build for my React Native app (managed workflow, non-ejected). I’ve followed the standard procedure and my eas.json is as follows:
{
"cli": {
...
0
votes
1
answer
258
views
An error occurred while resolving packages: EPERM: operation not permitted, mkdir
I have recently downloaded Unity to try out some game dev.
But every time i try to create a project im hit with this error message:
An error occurred while resolving packages:
One or more packages ...
2
votes
2
answers
962
views
TAURI V2: Trouble with the file system’s mkdir
So I’m trying to make a directory in TypeScript, but for some reason, it’s giving me an error saying "forbidden path: images". I’m not sure what I’m doing wrong here, and I’ve been having a ton of ...
0
votes
0
answers
50
views
Create a directory for every new contact in ms-access and check the existence only with the ID of the contact
I would like to create a new directory for any new contact I enter in an access database but I would like to check the existence of the directory only with the last 4 characters. These last 4 ...
2
votes
1
answer
333
views
Nextflow: mkdir: cannot create directory 'filename': File exists
I'm trying to setup a workflow using Nextflow on WSL2. After some changes, here is the full updated code:
params.output_dir = "./workflow_output"
params.input_dir = null
process fastQC {
...
0
votes
0
answers
38
views
bash: make dir contained ":" or other special characters [duplicate]
I am trying to create a directory contained ":"
mkdir MD_6nax_apo_POPC:POPE_110A
mkdir: impossible de créer le répertoire «MD_6nax_apo_POPC:POPE_110A»: Argument invalide
While just mkdir ...
-2
votes
4
answers
108
views
File not found in a created directory
I am working to add a file in temporary folder like so:
self._dir = tempfile.mkdtemp()
self._dir = os.path.join(self._dir, "test")
os.mkdir(self._dir)
self.checkpoint = os.path.join(self....
4
votes
4
answers
423
views
How can I use an array to create subdirectories using mkdir in bash?
I am trying to create a number of directories and subdirectories in one single command (ie avoiding for loops) like so:
mkdir -p {20..30}/{1..5}
This works no problem, and creates 10 directories, and ...
0
votes
3
answers
164
views
How can I detect an existing directory in ~/ with stat in C?
If the directory ~/testdir not exists, I want to create it.
Before the test, I create the directory ~/testdir, but stat is not detecting it, and the program tries to create it once more.
I only has ...
0
votes
1
answer
121
views
Google App Engine - Node.js - Error: ENOENT
I'm using Google App Engine running Node.js that is returning a null value in my Android Studio app. Logcat looks good, but the Google App Engine Console is returning an error:
Error: ENOENT: no such ...
2
votes
1
answer
13k
views
Creating multiple directories with mkdir and character range
My goal is to automate the creation of multiple directories that end with numerical indexes: dir03 dir04 ... dir09
I tried the following command: mkdir dir0[3-9].
As the result, the shell created a ...
0
votes
0
answers
314
views
mkdir permission denied inside docker container
I'm trying to create POST action to upload images in Django.
Using python:3.9-alpine3.13 docker image.
Dockerfile contains those lines:
RUN \
adduser \
--disabled-password \
--no-...
0
votes
0
answers
652
views
mkdir error : can not create directory ; file exists gitbash
#Please help me if you can
I am working on a project where I need to run a program (script file) from github into git bash terminal. Whenever I tried to run the program, it shows mkdir error, says : ...