1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/compiler/vtmp.v

23 lines
560 B
V
Raw Normal View History

2020-02-03 07:00:36 +03:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module compiler
import os
import filepath
2020-02-09 12:08:04 +03:00
fn get_vtmp_folder() string {
vtmp := filepath.join(os.tmpdir(),'v')
2019-12-20 00:29:37 +03:00
if !os.is_dir(vtmp) {
os.mkdir(vtmp)or{
panic(err)
}
}
return vtmp
}
2020-02-09 12:08:04 +03:00
fn get_vtmp_filename(base_file_name string, postfix string) string {
vtmp := get_vtmp_folder()
2019-12-23 13:09:22 +03:00
return os.realpath(filepath.join(vtmp,filepath.filename(os.realpath(base_file_name)) + postfix))
}