master #35

Merged
asmeron merged 2 commits from YanTheKaller/libublsettings:master into master 1 year ago
Collaborator
There is no content yet.
YanTheKaller added 2 commits 1 year ago
asmeron requested changes 1 year ago
int yon_file_save(char *file_path, char *text){
FILE *file = fopen(file_path,"w");
chmod(file_path,0777);
asmeron commented 1 year ago
Owner

Для чего 777 на файл и ниже ?

Для чего 777 на файл и ниже ?
asmeron reviewed 1 year ago
char *full_path = yon_char_unite(path,"/",name,NULL);
if (access(full_path,F_OK)){
FILE *fl = fopen(full_path,"w");
chmod(full_path,0777);
asmeron commented 1 year ago
Owner

Для чего 777 на файл ?

Для чего 777 на файл ?
asmeron reviewed 1 year ago
if (path){
if (access(path,F_OK)){
FILE *fl = fopen(path,"w");
chmod(path,0777);
asmeron commented 1 year ago
Owner

Для чего 777 на файл ?

Для чего 777 на файл ?
asmeron merged commit ab43263a97 into master 1 year ago

Reviewers

asmeron requested changes 1 year ago
The pull request has been merged as ab43263a97.
Sign in to join this conversation.
Loading…
There is no content yet.