mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
20 lines
422 B
V
20 lines
422 B
V
module main
|
|
|
|
import os
|
|
import v.vcache
|
|
import v.util
|
|
|
|
fn main() {
|
|
wipe_path(vcache.new_cache_manager([]).basepath, 'V cache')
|
|
wipe_path(util.get_vtmp_folder(), 'V tmp.c')
|
|
wipe_path(os.join_path(os.temp_dir(), 'v'), 'V tests')
|
|
}
|
|
|
|
fn wipe_path(cpath string, label string) {
|
|
if os.exists(cpath) && os.is_dir(cpath) {
|
|
os.rmdir_all(cpath) or {}
|
|
}
|
|
os.mkdir_all(cpath) or {}
|
|
println('$label folder $cpath was wiped.')
|
|
}
|