Android. mk script determines whether the file exists. android. mk script

Source: Internet
Author: User

Android. mk script determines whether the file exists. android. mk script

Android. mk determines whether a file exists. If yes, copy the file to a directory.

$ (Shell test-f [file] & echo yes) if the value is yes, the file exists and then performs the shell cp action

HAVE_TEST_CUST_FILE := $(shell test -f vendor/huaqin/resource/$(HQ_PROJECT)_$(HQ_CLIENT)/$(LOCAL_PATH)/DroidSansFallback.ttf && echo yes)ifeq ($(HAVE_TEST_CUST_FILE),yes)$(shell cp -f vendor/huaqin/resource/$(HQ_PROJECT)_$(HQ_CLIENT)/$(LOCAL_PATH)/DroidSansFallback.ttf $(PRODUCT_OUT)/system/fonts/DroidSansFallback.ttf)endif

The above script is used to copy the customized files to the out directory.


Android determines whether a file exists

Public boolean fileIsExists (){
Try {
File f = new File ("/storage/sdcard0/Manual/test.pdf ");
If (! F. exists ()){
Return false;
}

} Catch (Exception e ){
// TODO: handle exception
Return false;
}
Return true;
}

Shell script to determine whether a file exists

#! /Bin/bash
If [-f $1]
Then
Echo "$1 exists! "

Else
Echo "$1 not exists! "

Fi

***********************
Run
Bash test. sh/home/user.txt
Remember to add the absolute path ~~~, When running, the script is followed by a file parameter ~~~

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.