Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Programming \ Python in os.path Magical     - ORA-12545: Connection failed because the target host or object does not exist (Database)

- Docker ecosystem security is gradually maturing (Server)

- Linux Command Tutorial: du command to view disk space (Linux)

- grep command Series: grep command to search for multiple words (Linux)

- Android Qemu GPS module (Programming)

- How to troubleshoot error java.lang.NoSuchMethodError (Programming)

- String JavaScript type system (Programming)

- Use Epoll develop high-performance application server on Linux (Server)

- Linux instructions and examples GPG encryption and decryption (Linux)

- Install Apache streaming media services on CentOS 6.4 (Server)

- MySQL Study of --Percona Server 5.5 Upgrade 5.6 (Database)

- Red Hat Enterprise Linux configuration VNC multi-user access methods (Linux)

- Using Linux command line and execute PHP code (Programming)

- RedHat Linux 7 build yum source server (Server)

- Oracle user lock how to know what causes (Database)

- Zabbix configuration of SNMP (Server)

- Java interface and inheritance (Programming)

- Oracle Client Easy Connection error ORA-12154, TNS-03505 (Database)

- C language binary tree counts words (Programming)

- How to install Docker and basic usage on Ubuntu 15.04 (Server)

 
         
  Python in os.path Magical
     
  Add Date : 2018-11-21      
         
         
         
  1. Basics

    When os.path set path to the file in a different environment, the role is very large, we often are in Django or Flask see its shadow, in fact, there are several commonly used methods below:

Common method of action
os.path.dirname (__ file__) Returns the current execution path python script execution (see example below), there is a fixed parameter __file__
os.path.abspath (file) returns the absolute path to a file in the current environment, where a parameter file
os.path.join (basedir, file) the file path to the path of the file where the basedir here fbasedir and file all parameters
    OK, we might look at the following example.

2. Test

    Look at the two python script file my current environment:

xpleaf @ leaf: ~ / Source_Code $ pwd
/ Home / xpleaf / Source_Code
xpleaf @ leaf: ~ / Source_Code $ ls
hello.py test_os_path.py
    hello.py there is no content will be used for testing, the main look test_os_path.py code:

import os
  
path1 = os.path.dirname (__ file__)
  
print 'The path1 is:', path1
  
path2 = os.path.abspath (path1)
  
print 'The path2 is:', path2
  
path3 = os.path.join (path2, 'hello.py')
  
print 'The path3 is:', path3
    By looking at the implementation of the following two ways, we come to a deep understanding of the role of the above three methods:

(1) by way of a relative path is performed test_os_path.py

xpleaf @ leaf: ~ / Source_Code $ python test_os_path.py
The path1 is:
The path2 is: / home / xpleaf / Source_Code
The path3 is: /home/xpleaf/Source_Code/hello.py
(2) in a manner to perform absolute path test_os_path.py

xpleaf @ leaf: ~ / Source_Code $ python /home/xpleaf/Source_Code/test_os_path.py
The path1 is: / home / xpleaf / Source_Code
The path2 is: / home / xpleaf / Source_Code
The path3 is: /home/xpleaf/Source_Code/hello.py
    Through the implementation of the above two ways of output, it is easy to see the role of the three. That in the actual development, what use is it?

3. Use os.path in the actual development

    In the actual development, we certainly want to set a path to certain files, such as Web development, for the path templates and static files and other settings, in fact, if you've used Django or Flask, you should be able to see often that in their configuration files, there os.path appears generally to use this:

(1) First get the path of the current file (such as configuration files) are located

1
basedir = os.path.abspath (os.path.dirname (__ file__))
Absolute path (2) to set a file

1
static_file_path = os.path.join (basedir, 'index.html')
    Of course, os.path usage also have a lot more, just a list of three common here, and given the general usage of the development environment, as to whether this have to use, completely depends on each person's own ideas and methods, where only for reference.
     
         
         
         
  More:      
 
- Grub2: Save Your bootloader (Linux)
- DRBD rapid installation and deployment (Server)
- Nginx Keepalived Nginx monitoring scripts (Server)
- LAMP and LNMP automated installation scripts (Server)
- Oracle utilized undo data recovery operations (Database)
- Several Methods of SSH Auto - login (Linux)
- Minimum period string problem (Programming)
- MySQL display operation control tips (Database)
- How to modify the Sublime in Tab four spaces (Linux)
- To install and deploy PHP environment under the CentOS (Server)
- Android Studio simple setup (Linux)
- To share some very useful Vim command (Linux)
- Docker manage data (Linux)
- Using Maven to download Spring (Linux)
- SQL Beginner Guide (Database)
- Installation GitLab appears ruby_block supervise_redis_sleep action run (Linux)
- CentOS 6.5 install VNC-Server (Linux)
- MySQL multi-instance configuration (Database)
- Oracle users to automatically increase the partition table (Database)
- Copy files between two Linux hosts (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.