C#, VB Get Mobile Application Path

01 ธันวาคม 2552

     วันนี้ขอนำเสนอการเขียนโปรแกรมในเรื่องของการ Get Mobile Application Path ของ Mobile Application ที่เราใช้กันอยู่นะครับเพื่อที่จะไม่เป็นปัญหาในการติดตั้ง Mobile Application ที่เราได้ทำการพัฒนาขึ้น

Get Directory
     ตัวอย่าง Code Get Mobile Application Path ค่าที่ได้เป็นชนิด String โดย Path ที่ได้เป็น Directory ที่อ้างอิงถึง File ของเราที่เก็บอยู่โดยไม่ได้อ้างอิงหรือระบุถึง File ใดโดยตรง

Source Code C#

//ประกาศ Namespace
//using System.IO;
//using System.Reflection;

string stringPath;
stringPath=Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase);

Source Code VB
'ประกาศ Namespace
'Imports System.IO
'Imports System.Reflection

Dim stringPath As String
stringPath=Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase)


Get File Name
     การที่จะอ้างอิงหรือระบุถึง File ที่เราต้องการนั้นเราก็แค่ทำการต่อ String Dirctory ที่ได้ตามด้วย ชื่อของ File ที่้ต้องการ ดังตัวอย่าง

Source Code C#
//ประกาศ Namespace
//using System.IO;
//using System.Reflection;

string stringPath;
stringPath=Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase) + @"\FileName.xxx";

string stringPath;
stringPath =Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase) + @"\FolderName\FileName.xxx"

Source Code VB
'ประกาศ Namespace
'Imports System.IO
'Imports System.Reflection

Dim stringPath As String
stringPath=Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase) & "\FileName.xxx"

Dim stringPath As String
stringPath=Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase) & "\FolderName\FileName.xxx"


ผิดพลาดประการใดก็ติชมแก้ไขกันนะครับ
ขอบคุณครับ

0 ความคิดเห็น:

แสดงความคิดเห็น

About This Blog

เนื้อหาเกี่ยวกับการพัฒนา Program โดยใช้ .Net, C#, VB.

  © Blogger template On The Road by Ourblogtemplates.com 2009

Back to TOP