mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-24 23:53:15 +08:00
16 lines
225 B
Plaintext
16 lines
225 B
Plaintext
|
#!/usr/bin/env python3
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
import tempfile
|
||
|
|
||
|
(fd,filepath) = tempfile.mkstemp(dir=sys.argv[1])
|
||
|
|
||
|
os.fchown(fd,os.getuid(),os.getgid())
|
||
|
|
||
|
os.unlink(filepath)
|
||
|
|
||
|
os.fchown(fd,os.getuid(),os.getgid())
|
||
|
|
||
|
os.close(fd)
|