微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Python ntpath 模块-exists() 实例源码

Python ntpath 模块,exists() 实例源码

我们从Python开源项目中,提取了以下50代码示例,用于说明如何使用ntpath.exists()

项目:kinect-2-libras    作者:inessadl    | 项目源码 | 文件源码
def makedirs(name, mode=0777):
    """makedirs(path [,mode=0777])

    Super-mkdir; create a leaf directory and all intermediate ones.
    Works like mkdir,except that any intermediate path segment (not
    just the rightmost) will be created if it does not exist.  This is
    recursive.

    """
    head, tail = path.split(name)
    if not tail:
        head, tail = path.split(head)
    if head and tail and not path.exists(head):
        try:
            makedirs(head, mode)
        except OSError, e:
            # be happy if someone already created the path
            if e.errno != errno.EEXIST:
                raise
        if tail == curdir:           # xxx/newdir/. exists if xxx/newdir exists
            return
    mkdir(name, mode)
项目:python-    作者:secondtonone1    | 项目源码 | 文件源码
def renames(old, new):
    """renames(old,new)

    Super-rename; create directories as necessary and delete any left
    empty.  Works like rename,except creation of any intermediate
    directories needed to make the new pathname good is attempted
    first.  After the rename,directories corresponding to rightmost
    path segments of the old name will be pruned until either the
    whole path is consumed or a nonempty directory is found.

    Note: this function can fail with the new directory structure made
    if you lack permissions needed to unlink the leaf directory or
    file.

    """
    head, tail = path.split(new)
    if head and tail and not path.exists(head):
        makedirs(head)
    rename(old, new)
    head, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except OSError:
            pass
项目:kinect-2-libras    作者:inessadl    | 项目源码 | 文件源码
def renames(old,directories corresponding to rightmost
    path segments of the old name will be pruned way until either the
    whole path is consumed or a nonempty directory is found.

    Note: this function can fail with the new directory structure made
    if you lack permissions needed to unlink the leaf directory or
    file.

    """
    head, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:swjtu-pyscraper    作者:Desgard    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:swjtu-pyscraper    作者:Desgard    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:hostapd-mana    作者:adde88    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:hostapd-mana    作者:adde88    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:Sci-Finder    作者:snverse    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:Sci-Finder    作者:snverse    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:Sci-Finder    作者:snverse    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:Sci-Finder    作者:snverse    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:ivaochdoc    作者:ivaoch    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except OSError:
            pass
项目:RPoint    作者:george17-meet    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:RPoint    作者:george17-meet    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:habilitacion    作者:GabrielBD    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:habilitacion    作者:GabrielBD    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:Intranet-Penetration    作者:yuxiaokui    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:Intranet-Penetration    作者:yuxiaokui    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:flasky    作者:RoSEOu    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:flasky    作者:RoSEOu    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:MKFQ    作者:maojingios    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:MKFQ    作者:maojingios    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:threatdetectionservice    作者:flyballlabs    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:threatdetectionservice    作者:flyballlabs    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:oa_qian    作者:sunqb    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:oa_qian    作者:sunqb    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:Indushell    作者:SecarmaLabs    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:Indushell    作者:SecarmaLabs    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:zippy    作者:securesystemslab    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:news-for-good    作者:thecodinghub    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except OSError:
            pass
项目:CaScale    作者:Thatsillogical    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:CaScale    作者:Thatsillogical    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:chihu    作者:yelongyu    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:chihu    作者:yelongyu    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:pyetje    作者:rorlika    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:pyetje    作者:rorlika    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:respeaker_virtualenv    作者:respeaker    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:respeaker_virtualenv    作者:respeaker    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:Tencent_Cartoon_Download    作者:Fretice    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except OSError:
            pass
项目:infinite-lorem-ipsum    作者:patjm1992    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:infinite-lorem-ipsum    作者:patjm1992    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:oil    作者:oilshell    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:oil    作者:oilshell    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:python2-tracer    作者:extremecoders-re    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:python2-tracer    作者:extremecoders-re    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:fieldsight-kobocat    作者:awemulya    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except OSError:
            pass
项目:chalktalk_docs    作者:loremIpsum1771    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:chalktalk_docs    作者:loremIpsum1771    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass
项目:sslstrip-hsts-openwrt    作者:adde88    | 项目源码 | 文件源码
def makedirs(name, mode)
项目:sslstrip-hsts-openwrt    作者:adde88    | 项目源码 | 文件源码
def renames(old, tail = path.split(old)
    if head and tail:
        try:
            removedirs(head)
        except error:
            pass

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐