Folder Creation Based on Numerical Input Dialog Box given

Hi, a query with regards to the input dialog box, where in the variable is selected as Year and type as Int32. When the dialog box does come up, the individual puts the input. for eg: Year is 2024 , in that case when creating folder under create folder and passing on the logic such as "D:\Java" + “Year” it is actually creating a folder named Year but not a folder for 2024. Any suggestions what can be done.

Hi @Abhi_G_G

Since Year is Output varaible of Input Dialog Box you need not give it in double quotes.

Your syntax should be corrected as below:

"D:\Java" + Year

Regards

Hi Thank You. Have tried it. so it is working… I have given the details as “D:\Java” + "" + Year.ToString

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.