WDD Learning Modules

file management

Web File Managment using VSCode

File Management

File Management describes the way you name and save the files you create. There is a hierarchical file system with folders or directories and files inside them. File management show how we arrange these nested folders and files.

The following video shows how you can use VSCode to manage your files. It continues where the video in the Introduction left off.

File Management with VSCode

Example

To reference our main.css file from the index.html file that we created with the file structure from the video we would use the following path:

styles/main.css

Because index.html is at the root level of our project folder and main.css is inside the styles folder. We'd have to reference the folder and the file inside the styles folder called main.css.

See the Ponder activity to see how to start an HTML file in VSCode and adding extensions to VSCode.