절대 경로와 상대경로
상대경로 현재위치를 기준으로 상대적인 파일의 위치
..최상위 폴더
../ 현재 위치 상위폴더
./ 현재 위치
/ 루트
index.html이 C/index/a 에 위치한다면
/ 는 C
./ 는 a
../ 는 index라는 것이다.
절대경로
http://www.google.com, C:\users\document\untitled.jpg
같은 절대적인 경로
Flask
flask의 경우 static 폴더를 기준으로 상대경로를 추적한다.
그런데 스태틱 폴더의 경우
app = Flask(__name__,static_folder="templates", static_url_path='')
여기서 static_folder=' ' 안쪽 내용물을 수정하는 것으로
스태틱폴더를 바꿀 수 있다.