Skip to content

Instantly share code, notes, and snippets.

@huyx
Last active January 4, 2016 10:59
Show Gist options
  • Save huyx/8612381 to your computer and use it in GitHub Desktop.
Save huyx/8612381 to your computer and use it in GitHub Desktop.
文件和目录是否可写
import os
import tempfile
def dir_writeable(dir):
try:
(fd, name) = tempfile.mkstemp(dir=dir)
os.close(fd)
os.unlink(name)
except IOError:
return False
return True
def file_writeable(filename):
return os.access(filename, os.W_OK)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment