I have a winform application which has 21 video files and they’e path is set as applicaton.startupPath like this …
vpath[0] = Application.StartupPath + @"\v00.m4v";
vpath[1] = Application.StartupPath + @"\v01.m4v";
vpath[2] = Application.StartupPath + @"\v02.m4v";
vpath[3] = Application.StartupPath + @"\v03.m4v";
vpath[4] = Application.StartupPath + @"\v04.m4v";
vpath[5] = Application.StartupPath + @"\v05.m4v";
vpath[6] = Application.StartupPath + @"\v06.m4v";
vpath[7] = Application.StartupPath + @"\v07.m4v";
vpath[8] = Application.StartupPath + @"\v08.m4v";
vpath[9] = Application.StartupPath + @"\v09.m4v";
vpath[10] = Application.StartupPath + @"\v10.m4v";
vpath[11] = Application.StartupPath + @"\v11.m4v";
vpath[12] = Application.StartupPath + @"\v12.m4v";
vpath[13] = Application.StartupPath + @"\v13.m4v";
vpath[14] = Application.StartupPath + @"\v14.m4v";
vpath[15] = Application.StartupPath + @"\v15.m4v";
vpath[16] = Application.StartupPath + @"\v16.m4v";
vpath[17] = Application.StartupPath + @"\v17.m4v";
vpath[18] = Application.StartupPath + @"\v18.m4v";
vpath[19] = Application.StartupPath + @"\v19.m4v";
vpath[20] = Application.StartupPath + @"\v20.m4v";
now if a user wants to change those videos then he have to name it as v00 to v20. now if a user add video with different format then how can i change the path?? is it possible to change it on run time? if yes then how??
StartupPathis not a regular variable. In fact, it is not variable at all and also it cannot be “written”, it is a get-only property.Actually, you can change that property result value by copying the main executable file into required directory and re-runing it from there, but what’s th point?
Navigate to
Path,DirectoryandFileclasses to learn how to play with the file system.