Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Is there a way to use relative path in an Inline load statement?
eg- In a Bundle Info load while giving the absolute path it works fine.
Bundle Info LOAD * INLINE [
label, Image
aaa, c:\path1\path2\abc.jpg
bbb, c:\path1\path2\efg.jpg
];
But the below with relative path does not:
Bundle Info LOAD * INLINE [
label, Image
aaa, ..\path2\abc.jpg
bbb, ..\path2\efg.jpg
];
I have my App in c:\path1\path3.
Thanks,
Abey
Are you getting any error? It should work. Check if your paths are correct. Or may be try like
Bundle Info Load * INLINE [
Label, Image
aaa, ..\abc.jpg
bbb, ..\efg.jpg
];
Are you getting any error? It should work. Check if your paths are correct. Or may be try like
Bundle Info Load * INLINE [
Label, Image
aaa, ..\abc.jpg
bbb, ..\efg.jpg
];
Thanks Vishwarath.
Path was the problem, wrongly assumed the path was correct.
Thanks,
Abey
Cool.