https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Bob Feng <bob.c.feng@intel.com>
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
## @file
 | 
						|
# Override built in module os.path to provide support for long file path
 | 
						|
#
 | 
						|
# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
 | 
						|
# SPDX-License-Identifier: BSD-2-Clause-Patent
 | 
						|
#
 | 
						|
 | 
						|
import os
 | 
						|
from Common.LongFilePathSupport import LongFilePath
 | 
						|
 | 
						|
def isfile(path):
 | 
						|
    return os.path.isfile(LongFilePath(path))
 | 
						|
 | 
						|
def isdir(path):
 | 
						|
    return os.path.isdir(LongFilePath(path))
 | 
						|
 | 
						|
def exists(path):
 | 
						|
    return os.path.exists(LongFilePath(path))
 | 
						|
 | 
						|
def getsize(filename):
 | 
						|
    return os.path.getsize(LongFilePath(filename))
 | 
						|
 | 
						|
def getmtime(filename):
 | 
						|
    return os.path.getmtime(LongFilePath(filename))
 | 
						|
 | 
						|
def getatime(filename):
 | 
						|
    return os.path.getatime(LongFilePath(filename))
 | 
						|
 | 
						|
def getctime(filename):
 | 
						|
    return os.path.getctime(LongFilePath(filename))
 | 
						|
 | 
						|
join = os.path.join
 | 
						|
splitext = os.path.splitext
 | 
						|
splitdrive = os.path.splitdrive
 | 
						|
split = os.path.split
 | 
						|
abspath = os.path.abspath
 | 
						|
basename = os.path.basename
 | 
						|
commonprefix = os.path.commonprefix
 | 
						|
sep = os.path.sep
 | 
						|
normpath = os.path.normpath
 | 
						|
normcase = os.path.normcase
 | 
						|
dirname = os.path.dirname
 | 
						|
islink = os.path.islink
 | 
						|
isabs = os.path.isabs
 | 
						|
realpath = os.path.realpath
 | 
						|
relpath = os.path.relpath
 | 
						|
pardir = os.path.pardir
 |