val file = File("C:\\Users\\kim01\\Desktop\\android\\serverpractice\\app\\src\\main\\res\\drawable\\img.jpg")
if(file.exists()){
println("iamhere!!!!")
}
else{
println("not")
}
in kotlin, i used assign file with a absolute path from my image(by path copy) but always said "not" i used \ as / or relative path like drwable/img.jpg but not working what is the problem in this case?