Python获取文件所在目录和文件名的方法

作者:jingxian 时间:2021-04-07 05:44:35 

实例如下:


import os

if __name__ == "__main__":
 file_path = 'D:/test/test.apk'
 parent_path = os.path.dirname(file_path)
 print('parent_path = %s' % parent_path)
 file_name = os.path.split(file_path)[-1]
 print('file_name = %s' % file_name)

输出:

Python获取文件所在目录和文件名的方法

标签:python,目录,文件名
0
投稿

猜你喜欢

  • Django基础知识 web框架的本质详解

    2023-03-23 17:38:01
  • 使用tensorflow实现矩阵分解方式

    2022-04-17 17:01:17
  • 利用Python写个摸鱼监控进程

    2022-11-04 10:40:45
  • Python交互式图形编程的实现

    2021-09-04 18:19:15
  • 随感:交互设计两三事

    2009-05-18 13:54:00
  • vue.extend与vue.component的区别和联系

    2024-05-29 22:45:47
  • ASP数据库连接方式大全

    2023-07-12 05:52:59
  • 浏览器事件循环与vue nextTicket的实现

    2024-05-09 09:25:26
  • 浅谈几种常用的JS类定义方法

    2024-04-22 12:56:56
  • 详解go中的引用类型

    2023-08-28 06:02:31
  • Python itertools.product方法代码实例

    2023-01-19 03:18:31
  • 如何将JSP/Servlet项目转换为Spring Boot项目

    2023-06-19 16:23:06
  • Go语言实现的简单网络端口扫描方法

    2024-04-26 17:23:06
  • delete from online where datediff

    2009-06-07 18:46:00
  • tensorflow 2.1.0 安装与实战教程(CASIA FACE v5)

    2022-06-12 08:41:23
  • pandas实现一行拆分成多行

    2021-09-19 16:22:37
  • 记一次Vue中$route序列号报错

    2024-05-02 17:04:03
  • 使用python进行波形及频谱绘制的方法

    2023-02-07 02:48:58
  • 模拟兼容性的 addDOMLoadEvent 事件

    2009-07-31 12:37:00
  • 学会用Python实现滑雪小游戏,再也不用去北海道啦

    2023-07-05 03:25:11
  • asp之家 网络编程 m.aspxhome.com