How many input files?

With open a graph how should we know how many input files are using in that graph?

Showing Answers 1 - 6 of 6 Answers

there is one air command that can help you -

air project get-required-file == This command finds and displays the files in a project that the specified object(s) depends on. This command is branch-specific.

suppose u have graph ABC.mp. so to find the number of input datasets(IP files/IP tables..etc) using by the ABC.mp u can do the following ->

air project get-required-file /Projectname/mp/ABC.mp > ListofInputfiles.dat /* This wil save list of input files in file ListofInputfiles.dat */
cat ListofInputfiles.dat | wc -l /* It will give the count of input datasets required by the graph */

Cheers,
Puneet

  Was this answer useful?  Yes

Rahul

  • Apr 7th, 2015
 

hi Puneet its asking for object relative path...Could you please elaborate a little bit.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions