v/vlib/compiler/vtmp.v

22 lines
540 B
V
Raw Normal View History

2020-02-03 05:00:36 +01: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
2020-02-09 10:08:04 +01:00
fn get_vtmp_folder() string {
2020-03-09 02:23:34 +01:00
vtmp := os.join_path(os.tmpdir(), 'v')
2019-12-19 22:29:37 +01:00
if !os.is_dir(vtmp) {
2020-03-09 02:23:34 +01:00
os.mkdir(vtmp) or {
2019-12-19 22:29:37 +01:00
panic(err)
}
}
return vtmp
}
2020-02-09 10:08:04 +01:00
fn get_vtmp_filename(base_file_name string, postfix string) string {
vtmp := get_vtmp_folder()
2020-03-09 02:23:34 +01:00
return os.realpath(os.join_path(vtmp, os.filename(os.realpath(base_file_name)) + postfix))
}