Files and Directories

8
Files and Directories How files are organized

description

Files and Directories. How files are organized. HTML files and paths. How your code refers back to it’s content Relative vs. absolute Relative to the root or relative to the referring document < img src =“http://simpsons.com/images/homer.jpg” /> < img src =“images/homer.jpg” /> - PowerPoint PPT Presentation

Transcript of Files and Directories

Page 1: Files and Directories

Files and DirectoriesHow files are organized

Page 2: Files and Directories
Page 3: Files and Directories

How your code refers back to it’s contentRelative vs. absoluteRelative to the root or relative to the referring document

<img src=“http://simpsons.com/images/homer.jpg” /><img src=“images/homer.jpg” /><img src=“/monkeys.jpg” /><img src=“/temp/homer.jpg” />

HTML files and paths

Page 4: Files and Directories

Sometimes /web/ sometimes / It is the beginning of the site and the

directory holding the site. A link to /folder2/file1.html is a link relative

to the root of the folder.

The “root” of a website

Page 5: Files and Directories

Just the name of the file:

<img src=“homer.jpg” />

Same Directory

Page 6: Files and Directories

Just the name of the file:

<img src=“images/homer.jpg” />

Image in a folder in the same directory:

Page 7: Files and Directories

Just the name of the file:

<img src=“../homer.jpg” />

Image in a folder ABOVE the current directory:

Page 8: Files and Directories

Absolute & Relative URLs

File name Absolute Relative to doc

Index.html http://www.site.com/2005/index.html index.html

Image.gif http://www.site.com/2005/images/image.gif images/image.gif

Data.html http://www.site.com/info/data.html .../info/data.html

An absolute URL • shows the entire path to the file, including the scheme, server name,

the complete path, and the file name itself • Like a street address

A relative to the document URL • points to the location of the desired file FROM THE FILE THAT

CONTAINES THE URL. Instead of an address,

• Like saying “three doors down”, or “image xyz that is in the same directory as this file”

• When working within pages you can reference pages & items within the same directories.