file:///G:/image/bj.jpg是啥意思?这是相对路径还是绝对路径

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了file:///G:/image/bj.jpg是啥意思?这是相对路径还是绝对路径相关的知识,希望对你有一定的参考价值。

参考技术A file:///G:/image/bj.jpg
意思是你用FILE模式打开了G:/image/bj.jpg文件
绝对路径是“G:/image/bj.jpg”追问

绝对路径不是指向外部的链接吗?如:http://www.baidu.com或电子邮箱

追答

额绝对路径分为两种,一种是网络的,一种是本地的
http://www.BAIDU.COM前面有http://这是网络上的绝对路径,其实它的实际路径为:http://61.135.169.125:80

这是一台“服务器”对于整个INTERNET网络的绝对路径
而本地绝对路径就是说你硬盘上的位置,比如G:/image/bj.jpg
如果连接起来http://61.135.169.125:80/image/bj.jpg
它的意思就是在百度服务器上的主文件夹下image文件夹,下的bj.jpg文件

-----------而你的
file:///G:/image/bj.jpg
意思就是以FILE读取模式打开本地绝对路径G盘下IMAGE文件夹的BJ.JPG文件
---------------------
相对路径的话,假如IMAGE文件夹下有两个文件,一个是1.asp 一个是2.jpg
那么在1.asp里的写出的“2.jpg”这个字符串就是相对于1.asp的相对路径

本回答被提问者采纳

Linux deepin 下sublimes配置g++ openGL

参考 :http://blog.csdn.net/u010129448/article/details/47754623

ubuntu 下gnome只要将代码中deepin-terminal改为gnome终端就行

 

G++

 

{  


    "shell_cmd": "g++ ‘${file}‘ -o ‘${file_path}/${file_base_name}‘",  


    "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",  


    "working_dir": "${file_path}",  


    "selector": "source.c, source.c++",  
    "variants":  


    [  


        {  


            "name": "Build & Run",  


            "shell_cmd": " deepin-terminal -e bash -c \"g++ ‘${file}‘ -o ‘${file_path}/${file_base_name}‘ ; ‘${file_path}/${file_base_name}‘ ; read -p ‘\nPress ENTER or type command to continue...‘\""  


        },  


  


        {  


            "name": "Build Only",  


            "shell_cmd": "g++ ‘${file}‘ -o ‘${file_path}/${file_base_name}‘"  


        },  


  


        {  


            "name": "Run Only",  


            "shell_cmd": " deepin-terminal -e bash -c \"‘${file_path}/${file_base_name}‘ ; read -p ‘\nPress ENTER or type command to continue...‘\""  


        }  


    ]  


} 

  

 

 

openGL

 

{  


    "shell_cmd": "g++ ‘${file}‘ -o ‘${file_path}/${file_base_name}‘ -lglut -lGL -lGLU",  


    "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",  


    "working_dir": "${file_path}",  


    "selector": "source.c, source.c++",  


  


    "variants":  


    [  


        {  


            "name": "Build & Run",  


            "shell_cmd": " deepin-terminal -e bash -c \"g++ ‘${file}‘ -o ‘${file_path}/${file_base_name}‘ -lglut -lGL -lGLU; ‘${file_path}/${file_base_name}‘ ; read -p ‘\nPress ENTER or type command to continue...‘\""  


        },  


  


        {  


            "name": "Build Only",  


            "shell_cmd": "g++ ‘${file}‘ -o ‘${file_path}/${file_base_name}‘ -lglut -lGL -lGLU"  


        },  


  


        {  


            "name": "Run Only",  


            "shell_cmd": " deepin-terminal -e bash -c \"‘${file_path}/${file_base_name}‘ ; read -p ‘\nPress ENTER or type command to continue...‘\""  


        }  


    ]  


}  

  

 

以上是关于file:///G:/image/bj.jpg是啥意思?这是相对路径还是绝对路径的主要内容,如果未能解决你的问题,请参考以下文章

千兆双频wiFi啥意思?(802.11a/b/g/n/αc)

Exception: Traceback (most recent call last): File "/usr/lib/python2.7/dist-pac

双频802.11a/b/g/n和802.11a/b/g/n.ac有啥区别

c语言fopen函数 fp=fopen(" /","r") fopen 函数怎么样打开url 文件 比如 http://10.4.64.

commondialog1.filter=“all files(*.*)/*.*/text files(*.txt)/*.txt/executable_file(*.e

正则表达式(/[^0-9]/g,'')中的"/g"是啥意思 ?????