14 lines
229 B
V
14 lines
229 B
V
|
module main
|
||
|
|
||
|
import os
|
||
|
import v.vcache
|
||
|
|
||
|
fn main() {
|
||
|
mut cm := vcache.new_cache_manager([])
|
||
|
cpath := cm.basepath
|
||
|
if os.exists(cpath) && os.is_dir(cpath) {
|
||
|
os.rmdir_all(cpath)
|
||
|
}
|
||
|
println('V cache folder $cpath was wiped.')
|
||
|
}
|