1 Star 1 Fork 3

张小农 / 某扫描器核心反编译

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nturl2path.py 1.95 KB
一键复制 编辑 原始数据 按行查看 历史
张小农 提交于 2019-03-21 13:47 . first code
# uncompyle6 version 3.2.3
# Python bytecode 3.6 (3379)
# Decompiled from: Python 3.6.8 |Anaconda custom (64-bit)| (default, Feb 21 2019, 18:30:04) [MSC v.1916 64 bit (AMD64)]
# Embedded file name: nturl2path.py
"""Convert a NT pathname to a file URL and vice versa."""
def url2pathname(url):
"""OS-specific conversion from a relative URL of the 'file' scheme
to a file system path; not recommended for general use."""
import string, urllib.parse
url = url.replace(":", "|")
if "|" not in url:
if url[:4] == "////":
url = url[2:]
components = url.split("/")
return urllib.parse.unquote(("\\").join(components))
else:
comp = url.split("|")
if len(comp) != 2 or comp[0][-1] not in string.ascii_letters:
error = "Bad URL: " + url
raise OSError(error)
drive = comp[0][-1].upper()
components = comp[1].split("/")
path = drive + ":"
for comp in components:
if comp:
path = path + "\\" + urllib.parse.unquote(comp)
if path.endswith(":") and url.endswith("/"):
path += "\\"
return path
def pathname2url(p):
"""OS-specific conversion from a file system path to a relative URL
of the 'file' scheme; not recommended for general use."""
import urllib.parse
if ":" not in p:
if p[:2] == "\\\\":
p = "\\\\" + p
components = p.split("\\")
return urllib.parse.quote(("/").join(components))
else:
comp = p.split(":")
if len(comp) != 2 or len(comp[0]) > 1:
error = "Bad path: " + p
raise OSError(error)
drive = urllib.parse.quote(comp[0].upper())
components = comp[1].split("\\")
path = "///" + drive + ":"
for comp in components:
if comp:
path = path + "/" + urllib.parse.quote(comp)
return path
Python
1
https://gitee.com/zhanghk668/opsrv_extracted.git
git@gitee.com:zhanghk668/opsrv_extracted.git
zhanghk668
opsrv_extracted
某扫描器核心反编译
master

搜索帮助