Create a Project
Steps
- Create a folder called
my_project
and create three subfolders:data
,scripts
, andresults
. - Navigate into the
scripts
folder and create an empty Python script calledanalyze.py
. - Return to the project root and list the directory contents recursively.
- Check your current working directory to confirm you’re in the right place.
mkdir my_project
cd my_project
mkdir data scripts results
cd scripts
touch analyze.py
cd ..
ls -R
pwd
mkdir my_projectcd my_project
data, scripts, results
mkdir
cd scripts
New-Item analyze.py -ItemType File
cd ..
Get-ChildItem -Recurse
Get-Location